interface StyledCardProps { width?: number height?: number } const StyledCard = styled.div<StyledCardProps>` // your css here `